dynTableCell

Class: com.microstrategy.web.app.taglibs.DynTableCellTag

Usage:

This class will represent a dynamic table cell that can be rendered while displaying a dynamic table (by using the {@link DynTableTag} custom tag).
The dynamic table cell will analyze the condition specified on its attribute and decide based on that if its body should be included on the final output or not.
Example:
 <web:dynTable runat="server" >
   <web:dynTableCell feature="public-reports" runat="server" >
     This content will be displayed as a cell of the table if the feature public-reports is granted.
   </web:dynTableCell>
 </web:dynTable>
 


Name Required? Description
enableFeature false Indicates which feature condition could also be checked for in order to determine if the dynamic cell of the table will be rendered or not.
Usage:
The string given as attribute value has to belong to the list of possible features to check for, defined in enumerations like EnumAppWebFeatures. The condition defined here will be combined together with the boolean value generated by the feature attribute value specified.
feature false Indicates which feature condition should be checked in order to determine if the dynamic cell of the table will be rendered or not.
Usage:
The string given as attribute value has to belong to the list of possible features to check for, defined in enumerations like EnumAppWebFeatures.
runat true Indicates that the ASP.Net control should be processed on the server
valign false Indicates the vertical alignment attribute value to be assigned to the <TD> HTML tag to be generated by this tag. Usage:
Any valid VALIGN attribute value of the TD tag can be assigned to this attribute. The value will be used exactly as specified.